home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 742 / rkrm_lib3 / rkrm_lib3.lha / Utility / uptime.c < prev   
C/C++ Source or Header  |  1992-09-03  |  4KB  |  124 lines

  1. ;/* uptime.c - Execute me to compile me with SAS C 5.10
  2. LC -b1 -cfis -j73 uptime.c
  3. Blink FROM LIB:c.o,uptime.o TO uptime LIBRARY LIB:LC.lib,LIB:Amiga.lib
  4. quit
  5. */
  6.  
  7. /*
  8. Copyright (c) 1992 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga, Inc. for
  11. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  12. published by Addison-Wesley (ISBN 0-201-56774-1).
  13.  
  14. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  15. information on the correct usage of the techniques and operating system
  16. functions presented in these examples.  The source and executable code
  17. of these examples may only be distributed in free electronic form, via
  18. bulletin board or as part of a fully non-commercial and freely
  19. redistributable diskette.  Both the source and executable code (including
  20. comments) must be included, without modification, in any copy.  This
  21. example may not be published in printed form or distributed with any
  22. commercial product.  However, the programming techniques and support
  23. routines set forth in these examples may be used in the development
  24. of original executable software products for Commodore Amiga computers.
  25.  
  26. All other rights reserved.
  27.  
  28. This example is provided "as-is" and is subject to change; no
  29. warranties are made.  All use is at your own risk. No liability or
  30. responsibility is assumed.
  31. */
  32.     /* Uses SAS C getreg() */
  33.  
  34.     #include <exec/types.h>
  35.     #include <exec/memory.h>
  36.     #include <dos/dos.h>
  37.     #include <dos/dosextens.h>
  38.     #include <dos/datetime.h>
  39.     #include <utility/date.h>
  40.     #include <dos.h>
  41.  
  42.     #include <clib/exec_protos.h>
  43.     #include <clib/dos_protos.h>
  44.     #include <clib/utility_protos.h>
  45.  
  46.     #include <stdlib.h>
  47.  
  48.     struct Library *UtilityBase;
  49.  
  50.     LONG main(void);
  51.  
  52.     LONG main(void)
  53.     {
  54.       struct InfoData *infodata;
  55.       struct DeviceList *ramdevice;
  56.       struct DateStamp *now;
  57.       LONG currenttime, boottime;
  58.       BPTR lock;
  59.       LONG vargs[3];
  60.       LONG rc = RETURN_FAIL;
  61.  
  62.       /* Fails silently if < 37 */
  63.       if (UtilityBase = OpenLibrary("utility.library", 37))
  64.       {
  65.         if (infodata = AllocMem(sizeof(struct InfoData), MEMF_CLEAR))
  66.         {
  67.           if (now = AllocMem(sizeof(struct DateStamp), MEMF_CLEAR))
  68.           {
  69.             if (lock = Lock("RAM:", SHARED_LOCK))
  70.             {
  71.               if ((Info(lock, infodata)) == DOSTRUE)
  72.               {
  73.                 /* Make C pointer */
  74.  
  75.                 ramdevice = BADDR(infodata->id_VolumeNode);
  76.  
  77.                 boottime = SMult32(ramdevice->dl_VolumeDate.ds_Days, 86400) +
  78.                            SMult32(ramdevice->dl_VolumeDate.ds_Minute, 60) +
  79.                            SDivMod32(ramdevice->dl_VolumeDate.ds_Tick,
  80.                                      TICKS_PER_SECOND );
  81.  
  82.                 DateStamp(now);
  83.  
  84.                 currenttime = SMult32(now->ds_Days, 86400) +
  85.                               SMult32(now->ds_Minute, 60) +
  86.                               SDivMod32(now->ds_Tick, TICKS_PER_SECOND);
  87.  
  88.                 currenttime -= boottime;
  89.  
  90.                 if (currenttime > 0)
  91.                 {
  92.                   vargs[0] = UDivMod32(currenttime, 86400);
  93.  
  94.                   vargs[1] = getreg(1);
  95.                   vargs[1] = UDivMod32(vargs[1], 3600);
  96.  
  97.                   vargs[2] =getreg(1);
  98.                   vargs[2] = UDivMod32(vargs[2], 60);
  99.  
  100.                   /*
  101.                    * Passing the address of the array allows the VPrintf()
  102.                    * function to access the array contents.  Keep in mind
  103.                    * that VPrintf() does _NOT_ know how many elements are
  104.                    * really valid in the final parameter, and will gleefully
  105.                    * run past the valid arguments.
  106.                    */
  107.                   VFPrintf(Output(),
  108.                            "up for %ld days, %ld hours, %ld minutes\n",
  109.                            vargs );
  110.  
  111.                   rc = RETURN_OK;
  112.                 }
  113.               }
  114.               UnLock(lock);
  115.             }
  116.             FreeMem(now, sizeof(struct DateStamp));
  117.           }
  118.           FreeMem(infodata, sizeof(struct InfoData));
  119.         }
  120.         CloseLibrary(UtilityBase);
  121.       }
  122.       exit(rc);
  123.     }
  124.